home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / stistics.arc / SHORT-T.DOC < prev    next >
Text File  |  1988-07-24  |  2KB  |  44 lines

  1.                 SHORT-T  (Student's T-test, short version)
  2.  
  3. If  you  already  know the mean, variance and N of two groups,  it  is  not 
  4. necessary  to  type in all the individual numbers to run  a  T-test.   This 
  5. program does the entire test based on these three measurements.  
  6.  
  7. EXAMPLE:   Data  is  the same as for the long version  of  the  T-test,  as 
  8. follows:
  9.  
  10.                             GROUP 1          GROUP 2
  11.     
  12.               VARIANCE       0.110            0.10635
  13.  
  14.               MEAN           1.137            1.325
  15.  
  16.               N               10               1O
  17.   
  18.  
  19. The  only caution that need be observed is that the group with the  LARGEST 
  20. variance must be Group 1, when entering the data.  All of the tests are the 
  21. same  as  in the long version of the T-test.  That is, an F-test  is  first 
  22. applied, and different methods are used to compute the T value based on the 
  23. results  of  the F-test.  Both an exact P-value and  statements  concerning 
  24. significance are printed out.
  25.  
  26. Data  can be entered either directly from the keyboard, or via  a  WordStar 
  27. non-document file.  The file format is as shown below:
  28.  
  29. Short-T test data from file    <-- Title, up to 65 characters of any kind.
  30. 0.110  0.10635                 <-- *Variance 1, variance 2.
  31. 1.137  1.325                   <-- Mean 1, mean 2.
  32. 10     10                      <-- N1, N2.
  33.  
  34.                                * Variance 1 MUST BE the larger variance.
  35.  
  36. REFERENCE:  Mather, K.  1951  Statistical Analysis in Biology.  Methuen and 
  37.             Company, Ltd., London.  Pages 56-57.
  38.  
  39. FORTRAN VERSION:  Dr. Stanley Kaplan  May 65
  40. BASIC VERSION:    Dr. Stanley Kaplan  Jan 82 
  41. PASCAL VERSION:   Dr. Stanley Kaplan  Sep 85
  42. UPDATES:                              Oct 86 (Version 2.00)
  43.                                       Feb 87 (Version 2.10)
  44.                                       Feb 88 (MS-DOS Version 2.2)